home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / OCLIEN.PAK / SPLITFRA.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  48 lines

  1. // splitfra.h : main header file for the CSplitFrame class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CSplitFrame frame with splitter
  16.  
  17. #ifndef __AFXEXT_H__
  18. #include <afxext.h>
  19. #endif
  20.  
  21. class CSplitFrame : public CMDIChildWnd
  22. {
  23.     DECLARE_DYNCREATE(CSplitFrame)
  24. protected:
  25.     CSplitFrame();          // protected constructor used by dynamic creation
  26.  
  27. // Attributes
  28. protected:
  29.     CSplitterWnd    m_wndSplitter;
  30. public:
  31.  
  32. // Operations
  33. public:
  34.  
  35. // Implementation
  36. public:
  37.     virtual ~CSplitFrame();
  38.     virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  39.  
  40.     // Generated message map functions
  41.     //{{AFX_MSG(CSplitFrame)
  42.         // NOTE - the ClassWizard will add and remove member functions here.
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48.